* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Body */
  body {
    font-family: "Arial", sans-serif;
    background-color: #f4f4f4;
    padding: 0;
    margin: 0;
  }

  /* Navbar */
  navbar {
    background-color: #333;
    padding: 1rem 0;
  }

  .navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff !important;
  }

  .navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #ff6f61 !important;
  }

  .form-control {
    border-radius: 20px;
  }

  .btn-outline-success {
    border-radius: 20px;
    border-color: #ff6f61;
    color: #ff6f61;
  }

  .btn-outline-success:hover {
    background-color: #ff6f61;
    color: white;
  }

  /* Contact Form */
  .container {
    max-width: 800px;
    margin-top: 50px;
  }

  .form-label {
    font-weight: bold;
  }

  textarea {
    resize: none;
  }

  button[type="submit"] {
    background-color: #ff6f61;
    border: none;
    color: white;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }

  button[type="submit"]:hover {
    background-color: #ff3b2a;
  }

  /* Footer */
  footer {
    background-color: #2c3e50; /* أزرق داكن جميل */
    color: #fff; /* نص أبيض لسهولة القراءة */
    padding: 30px 0; /* إضافة حشو أعلى وأسفل الفوتر */
    text-align: center;
  }

  footer p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #bdc3c7; /* لون رمادي فاتح للنصوص */
  }

  footer .social-icons {
    margin: 20px 0;
  }

  footer .social-icons a {
    margin: 0 15px;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  footer .social-icons a:hover {
    color: #f39c12; /* تأثير عند المرور على الأيقونات */
  }

  footer .quick-links {
    margin-top: 20px;
  }

  footer .quick-links a {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer .quick-links a:hover {
    color: #f39c12; /* تغيير اللون عند التفاعل */
  }

  footer .newsletter {
    margin-top: 30px;
  }

  footer .newsletter input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    width: 300px;
  }

  footer .newsletter button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  footer .newsletter button:hover {
    background-color: #e67e22; /* تغيير اللون عند المرور على الزر */
  }

  /* Responsive Design */

/* For devices with width <= 768px (tablets and smaller devices) */
@media (max-width: 768px) {
/* Navbar: Stack the nav items vertically */
.navbar-nav {
text-align: center;
}

/* Make the navbar items larger and center them */
.navbar-nav .nav-link {
font-size: 1.1rem;
margin-right: 0;
}

/* Contact form and other sections: make form fields full-width */
.form-control, textarea, button[type="submit"] {
width: 100%;
}

/* Adjust social icons size */
.social-icons a {
font-size: 1.5rem;
}

/* Adjust container padding */
.container {
padding-left: 10px;
padding-right: 10px;
}

/* Footer: adjust font size */
footer p {
font-size: 0.9rem;
}

/* Fix the size of the subscribe button */
.footer .btn-subscribe {
width: auto;
font-size: 1rem; /* Ensure it doesn't grow too large */
padding: 10px 20px; /* Adjust padding to fit */
}
}

/* For devices with width <= 576px (phones and smaller devices) */
@media (max-width: 576px) {
/* Navbar: Adjust font size for mobile */
.navbar-nav .nav-link {
font-size: 1rem;
margin-right: 1rem;
}

/* Adjust button size for smaller devices */
button[type="submit"] {
width: 100%;
}

/* Make social icons a bit smaller */
.social-icons a {
font-size: 1.3rem;
}

/* Adjust footer font size */
footer p {
font-size: 0.85rem;
}

/* Fix the size of the subscribe button */
.footer .btn-subscribe {
width: auto;
font-size: 0.9rem;
padding: 8px 15px; /* Adjust padding */
}
}